From 4b7c8218fb5aef3aa25c9ca65fd919f9024dad54 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 8 Jan 2016 15:36:32 -0500 Subject: [PATCH] Use standard cursor names for DND At least as far as we have them. CSS has on equivalent of dnd-ask, so we keep using that name as-is. --- gtk/gtkdnd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index e219dd5689..0907fd9116 100644 --- a/gtk/gtkdnd.c +++ b/gtk/gtkdnd.c @@ -275,10 +275,10 @@ static struct { } drag_cursors[] = { { GDK_ACTION_DEFAULT, NULL }, { GDK_ACTION_ASK, "dnd-ask", NULL, NULL }, - { GDK_ACTION_COPY, "dnd-copy", NULL, NULL }, - { GDK_ACTION_MOVE, "dnd-move", NULL, NULL }, - { GDK_ACTION_LINK, "dnd-link", NULL, NULL }, - { 0 , "dnd-none", NULL, NULL }, + { GDK_ACTION_COPY, "copy", NULL, NULL }, + { GDK_ACTION_MOVE, "move", NULL, NULL }, + { GDK_ACTION_LINK, "alias", NULL, NULL }, + { 0 , "no-drop", NULL, NULL }, }; /********************* -- 2.30.2